home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / default / bluetooth < prev    next >
Encoding:
Text File  |  2006-10-20  |  2.9 KB  |  97 lines

  1. # Defaults for bluez-utils
  2.  
  3. # This file supersedes /etc/default/bluez-pan.  If
  4. # that exists on your system, you should use this
  5. # file instead and remove the old one.  Until you
  6. # do so, the contents of this file will be ignored.
  7.  
  8. # start bluetooth on boot?
  9. # compatibility note: If this variable is not found bluetooth will
  10. # start
  11. BLUETOOTH_ENABLED=1
  12.  
  13. ############ HIDD
  14. #
  15. # To have Bluetooth mouse and keyboard support, get the
  16. # Linux 2.6.6 patch or better from bluez.org, and set 
  17. # HIDD_ENABLED to 1.
  18. HIDD_ENABLED=0
  19. HIDD_OPTIONS="--master --server"
  20. # to make hidd always use a particular interface, use something
  21. # like this, substituting the bdaddr of the interface:
  22. # HIDD_OPTIONS="-i AA:BB:CC:DD:EE:FF --server"
  23. #
  24. # remove '--master' if you're having trouble working with Ericsson
  25. # T630 phones with hidd operational at the same time.
  26.  
  27. ############ COMPATIBILITY WITH OLD BLUEZ-PAN
  28. # Compatibility: if old PAN config exists, use it
  29. # rather than this file.
  30. if test -f /etc/default/bluez-pan; then
  31.     . /etc/default/bluez-pan
  32.     return
  33. fi
  34. ############
  35.  
  36. ############ DUND
  37. #
  38. # Run dund -- this allows ppp logins. 1 for enabled, 0 for disabled.
  39. DUND_ENABLED=0
  40.  
  41. # Arguments to dund: defaults to acting as a server
  42. DUND_OPTIONS="--listen --persist"
  43.  
  44. # Run dund --help to see the full array of options.
  45. # Here are some examples:
  46. #
  47. # Connect to any nearby host offering access
  48. # DUND_OPTIONS="--search"
  49. #
  50. # Connect to host 00:11:22:33:44:55
  51. # DUND_OPTIONS="--connect 00:11:22:33:44:55"
  52. #
  53. # Listen on channel 3
  54. # DUND_OPTIONS="--listen --channel 3"
  55.  
  56. # Special consideration is needed for certain devices. Microsoft
  57. # users see the --msdun option.  Ericsson P800 users will need to
  58. # listen on channel 3 and also run 'sdptool add --channel=3 SP'
  59.  
  60. ############ PAND
  61. #
  62. # Run pand -- ethernet: creates new network interfaces bnep<N>
  63. # that can be configured in /etc/network/interfaces
  64. # set to 1 for enabled, 0 for disabled
  65. PAND_ENABLED=0
  66.  
  67. # Arguments to pand
  68. # Read the PAN howto for ways to set this up
  69. # http://bluez.sourceforge.net/contrib/HOWTO-PAN
  70. PAND_OPTIONS=""
  71.  
  72. # example pand lines
  73. #
  74. # Act as the controller of an ad-hoc network
  75. # PAND_OPTIONS="--listen --role GN"
  76. #
  77. # Act as a network access point: routes to other networks
  78. # PAND_OPTIONS="--listen --role NAP"
  79. #
  80. # Act as a client of an ad-hoc controller with number 00:11:22:33:44:55
  81. # PAND_OPTIONS="--role PANU --connect 00:11:22:33:44:55"
  82. #
  83. # Connect to any nearby network controller (access point or ad-hoc)
  84. # PAND_OPTIONS="--role PANU --search"
  85.  
  86. ############ SDPTOOL
  87. # this variable controls the options passed to sdptool on boot, useful if you
  88. # need to setup sdpd on boot.
  89. # options are ;-separated, i.e. for every ; an sdptool instance will be
  90. # launched
  91. #
  92. # examples:
  93. # SDPTOOL_OPTIONS="add --channel=3 SP" # ericsson P800 serial profile
  94. # SDPTOOL_OPTIONS="add --channel=8 OPUSH ; add --channel=9 FTRN" # motorola
  95. #                                             # object push and file transfer
  96. SDPTOOL_OPTIONS=""
  97.